You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Classes > Vector Structure > Vector Methods > Concat Method > Vector.Concat Method ([In] TVec[])
Dew Math for .NET
ContentsIndexHome
Example
var a,b,c,d: Vector; begin a.SetIt(False,[1,2,3]); b.Copy(a); c.Concat([a,b]); // c = [1,2,3,1,2,3] d.Size(10,True); d.SetZero(0,4); d.Concat(4,[c]); // d = [0,0,0,0,1,2,3,1,2,3] end;
Copyright (c) 1999-2024 by Dew Research. All rights reserved.